home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / make_vcslib.script < prev    next >
Text File  |  1999-01-01  |  4KB  |  159 lines

  1. echo "This make take some time..."
  2.  
  3. alias cc vc -sd -dontwarn=-1 -O2
  4.  
  5. echo "Processing _main etc..."
  6. cc -c _lmath.s
  7. cc -c _main.c
  8. cc -c errno.c
  9. cc -c _errors.c
  10. cc -c _chkabort.c
  11. cc -c geta4.s
  12. echo "Processing ctype..."
  13. cc -c ctype/#?.c
  14. echo "Processing stdio..."
  15. cc -c stdio/#?.c
  16. echo "Processing stdlib..."
  17. cc -c stdlib/#?.c
  18. echo "Processing string..."
  19. cc -c string/#?.c
  20. echo "Processing time..."
  21. cc -c time/#?.c
  22. echo "Processing setjmp..."
  23. cc -c setjmp/#?.s
  24. echo "Processing signal..."
  25. cc -c signal/#?.c
  26. echo "Processing locale..."
  27. cc -c locale/#?.c
  28. echo "Processing prof..."
  29. cc -c prof/*.c
  30.  
  31. echo "Joining everything together..."
  32. alib r vcs _main
  33. alib r vcs _chkabort
  34. alib r vcs _lmath
  35. alib r vcs errno
  36. alib r vcs _errors
  37. alib r vcs geta4
  38. alib r vcs ctype/isalnum
  39. alib r vcs ctype/isalpha
  40. alib r vcs ctype/iscntrl
  41. alib r vcs ctype/isdigit
  42. alib r vcs ctype/isgraph
  43. alib r vcs ctype/islower
  44. alib r vcs ctype/isprint
  45. alib r vcs ctype/ispunct
  46. alib r vcs ctype/isspace
  47. alib r vcs ctype/isupper
  48. alib r vcs ctype/isxdigit
  49. alib r vcs ctype/tolower
  50. alib r vcs ctype/toupper
  51. alib r vcs ctype/_ctype_
  52. alib r vcs stdio/fclose
  53. alib r vcs stdio/fflush
  54. alib r vcs stdio/fgetc
  55. alib r vcs stdio/fgets
  56. alib r vcs stdio/fopen
  57. alib r vcs stdio/fputc
  58. alib r vcs stdio/fputs
  59. alib r vcs stdio/gets
  60. alib r vcs stdio/puts
  61. alib r vcs stdio/remove
  62. alib r vcs stdio/rename
  63. alib r vcs stdio/_fillbuf
  64. alib r vcs stdio/_flushbuf
  65. alib r vcs stdio/_putbuf
  66. alib r vcs stdio/__v0printf
  67. alib r vcs stdio/__v0fprintf
  68. alib r vcs stdio/__v0sprintf
  69. alib r vcs stdio/__aprintf
  70. alib r vcs stdio/ungetc
  71. alib r vcs stdio/ftell
  72. alib r vcs stdio/fseek
  73. alib r vcs stdio/fread
  74. alib r vcs stdio/fwrite
  75. alib r vcs stdio/setvbuf
  76. alib r vcs stdio/vfprintf
  77. alib r vcs stdio/printf
  78. alib r vcs stdio/vprintf
  79. alib r vcs stdio/fprintf
  80. alib r vcs stdio/vfscanf
  81. alib r vcs stdio/vsprintf
  82. alib r vcs stdio/sprintf
  83. alib r vcs stdio/vscanf
  84. alib r vcs stdio/scanf
  85. alib r vcs stdio/fscanf
  86. alib r vcs stdio/sscanf
  87. alib r vcs stdio/vsscanf
  88. alib r vcs stdio/getchar
  89. alib r vcs stdio/freopen
  90. alib r vcs stdio/tmpfile
  91. alib r vcs stdio/tmpnam
  92. alib r vcs stdio/setbuf
  93. alib r vcs stdio/putchar
  94. alib r vcs stdio/rewind
  95. alib r vcs stdio/fgetpos
  96. alib r vcs stdio/fsetpos
  97. alib r vcs stdio/clearerr
  98. alib r vcs stdio/feof
  99. alib r vcs stdio/ferror
  100. alib r vcs stdio/perror
  101. alib r vcs stdlib/malloc
  102. alib r vcs stdlib/system
  103. alib r vcs stdlib/rand
  104. alib r vcs stdlib/calloc
  105. alib r vcs stdlib/strtol
  106. alib r vcs stdlib/strtoul
  107. alib r vcs stdlib/atol
  108. alib r vcs stdlib/atoi
  109. alib r vcs stdlib/abs
  110. alib r vcs stdlib/labs
  111. alib r vcs stdlib/div
  112. alib r vcs stdlib/ldiv
  113. alib r vcs stdlib/qsort
  114. alib r vcs stdlib/bsearch
  115. alib r vcs stdlib/getenv
  116. alib r vcs stdlib/abort
  117. alib r vcs stdlib/atexit
  118. alib r vcs string/memchr
  119. alib r vcs string/memcmp
  120. alib r vcs string/memcpy
  121. alib r vcs string/memmove
  122. alib r vcs string/memset
  123. alib r vcs string/strcat
  124. alib r vcs string/strcpy
  125. alib r vcs string/strcmp
  126. alib r vcs string/strncmp
  127. alib r vcs string/strncpy
  128. alib r vcs string/strchr
  129. alib r vcs string/strncat
  130. alib r vcs string/strstr
  131. alib r vcs string/strpbrk
  132. alib r vcs string/strrchr
  133. alib r vcs string/strspn
  134. alib r vcs string/strlen
  135. alib r vcs string/strcspn
  136. alib r vcs string/strerror
  137. alib r vcs string/strtok
  138. alib r vcs time/__gmtoffset
  139. alib r vcs time/time
  140. alib r vcs time/clock
  141. alib r vcs time/asctime
  142. alib r vcs time/localtime
  143. alib r vcs time/mktime
  144. alib r vcs time/gmtime
  145. alib r vcs time/strftime
  146. alib r vcs setjmp/setjmp
  147. alib r vcs signal/signal
  148. alib r vcs signal/raise
  149. alib r vcs locale/setlocale
  150. alib r vcs locale/localeconv
  151. alib r vcs geta4
  152. alib r vcs prof/profiler
  153. alib r vcs prof/prof_sysdep
  154.  
  155. copy vcs.lib vlib:
  156.  
  157. echo "Done! vcs.lib copied to vlib:"
  158.  
  159.